home *** CD-ROM | disk | FTP | other *** search
- UNIT PasLibIntf;
- {-------------------------------------------}
- (*
- ©1988 by Steve Seaquist. All rights reserved.
- Used by permission. Use at your own risk.
- No warranty is expressed or implied.
-
- This Macintosh virus-detecting program was
- originally published and explained in the
- February 1989 issue of MacTutor magazine.
- Some aspects of its design are important to
- security, and it uses some unusual
- techniques, so please read the article.
- *)
- {-------------------------------------------}
- INTERFACE
- TYPE
- PascalPointer = ^INTEGER;
-
- PROCEDURE PLFlush
- (VAR fvar:TEXT);
- PROCEDURE PLSetVBuf
- (VAR fvar:TEXT;
- buffer: UNIV PascalPointer;
- style: INTEGER;
- bufsize: INTEGER);
- PROCEDURE Textbook
- (pGrafPtr: GrafPtr);
-
- {*******************************************}
- IMPLEMENTATION
- {-------------------------------------------}
- PROCEDURE PLFlush
- (VAR fvar:TEXT);
- BEGIN
- END;
- {-------------------------------------------}
- PROCEDURE PLSetVBuf
- (VAR fvar:TEXT;
- buffer: UNIV PascalPointer;
- style: INTEGER;
- bufsize: INTEGER);
- BEGIN
- END;
- {-------------------------------------------}
- PROCEDURE Textbook
- (pGrafPtr: GrafPtr);
- BEGIN
- END;
- {*******************************************}
- END.